home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Multimedia / Resource Library: Multimedia.iso / hypercrd / xcmds / dvlprstc.hqx / Developer Stack 1.3r / card_39430.txt < prev    next >
Text File  |  1991-04-30  |  963b  |  41 lines

  1. -- card: 39430 from stack: in.3r
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 3837
  5. -- name: SumInt
  6.  
  7.  
  8. -- part contents for background part 10
  9. ----- text -----
  10. 51
  11.  
  12. -- part contents for background part 5
  13. ----- text -----
  14. SumInt
  15.  
  16. -- part contents for background part 6
  17. ----- text -----
  18. This XFCN will add a string of integers and return the result.  It performs this simple task much faster than coding a similar routine in HyperTalk  For instance, a Mac II will add 1600 integers with a HyperTalk script in about 110 seconds.  The same 1600 integers will take 0.1 seconds using sumint!.  
  19.  
  20. It will only add integers, which may be seperated by returns, commas, or spaces.  
  21.  
  22.  
  23.  ΓÇóΓÇóΓÇó Nigel Redmon CIS 72736,753 ΓÇóΓÇóΓÇó
  24.  
  25.  
  26. -- part contents for background part 27
  27. ----- text -----
  28. XFCN
  29.  
  30. -- part contents for background part 7
  31. ----- text -----
  32. Syntax:
  33.  
  34.    sumInt(theString)
  35.  
  36.  
  37. Example:
  38.   put "1 2 34" into theString
  39.   put sumInt(theString) into message box 
  40.  
  41.